{% extends "base.html" %} {% block title %}Ask a Question - Quick Care Connect{% endblock %} {% block content %}

Ask a Question

Get expert medical advice from qualified doctors in our Q&A forum

Post Your Question
{{ form.hidden_tag() }}
{{ form.category.label(class="form-label fw-bold") }} Type or select the medical category that best matches your question. Doctors from that category will be able to answer it.
{{ form.category(class="form-control form-control-lg") }}
{% if form.category.errors %}
{% for error in form.category.errors %}
{{ error }}
{% endfor %}
{% endif %}
{{ form.title.label(class="form-label fw-bold") }} Write a clear, concise title for your question {{ form.title(class="form-control form-control-lg", placeholder="e.g., What are the symptoms of high blood pressure?") }} {% if form.title.errors %}
{% for error in form.title.errors %}
{{ error }}
{% endfor %}
{% endif %}
{{ form.content.label(class="form-label fw-bold") }} Provide detailed information about your question. Include symptoms, duration, and any relevant medical history. {{ form.content(class="form-control", rows="8", placeholder="Describe your question in detail. The more information you provide, the better doctors can help you.") }} {% if form.content.errors %}
{% for error in form.content.errors %}
{{ error }}
{% endfor %}
{% endif %}
{{ form.is_anonymous(class="form-check-input") }} {{ form.is_anonymous.label(class="form-check-label fw-semibold") }} Your name will be hidden and shown as Anonymous Patient on public Q&A pages.
Tips for Better Answers:
  • Be specific about your symptoms and concerns
  • Include duration of the problem (e.g., "for 3 weeks")
  • Mention any medications you're currently taking
  • Share relevant medical history if applicable
  • Choose the correct medical category for faster response
Cancel {{ form.submit(class="btn btn-success", style="background: rgba(16, 185, 129, 0.8); border: 1px solid rgba(16, 185, 129, 0.5); padding: 0.75rem 2rem; font-weight: 600;") }}
{% endblock %}